home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gmp-132.lha / gmp-1.3.2 / mpz_cmp_si.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  2KB  |  63 lines

  1. /* mpz_cmp_si(u,v) -- Compare an integer U with a single-word int V.
  2.    Return positive, zero, or negative based on if U > V, U == V, or U < V.
  3.  
  4. Copyright (C) 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of the GNU MP Library.
  7.  
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. The GNU MP Library is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with the GNU MP Library; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. #include "gmp.h"
  23. #include "gmp-impl.h"
  24.  
  25. int
  26. #ifdef __STDC__
  27. mpz_cmp_si (const MP_INT *u, signed long int v_digit)
  28. #else
  29. mpz_cmp_si (u, v_digit)
  30.      const MP_INT *u;
  31.      signed long int v_digit;
  32. #endif
  33. {
  34.   mp_size usize = u->size;
  35.   mp_size vsize;
  36.   mp_limb u_digit;
  37.  
  38.   vsize = 0;
  39.   if (v_digit > 0)
  40.     vsize = 1;
  41.   else if (v_digit < 0)
  42.     {
  43.       vsize = -1;
  44.       v_digit = -v_digit;
  45.     }
  46.  
  47.   if (usize != vsize)
  48.     return usize - vsize;
  49.  
  50.   if (usize == 0)
  51.     return 0;
  52.  
  53.   u_digit = u->d[0];
  54.  
  55.   if (u_digit == v_digit)
  56.     return 0;
  57.  
  58.   if ((u_digit < v_digit) == (usize < 0))
  59.     return 1;
  60.   else
  61.     return -1;
  62. }
  63.